From: Zheng Zhu Date: Tue, 19 Oct 2004 18:03:58 +0000 (+0000) Subject: special conversion for displaying title X-Git-Tag: 1.5.0alpha1~1507 X-Git-Url: http://git.cyclocoop.org/%28%5B%5E/404?a=commitdiff_plain;h=f8b206a31fd6fc503c1a295b688151aa787b68cf;p=lhc%2Fweb%2Fwiklou.git special conversion for displaying title --- diff --git a/includes/OutputPage.php b/includes/OutputPage.php index c52935898f..9177c31ee5 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -160,7 +160,7 @@ class OutputPage { function setHTMLTitle( $name ) {$this->mHTMLtitle = $name; } function setPageTitle( $name ) { global $action, $wgContLang; - $name = $wgContLang->autoConvert($name); + $name = $wgContLang->convert($name, true); $this->mPagetitle = $name; if(!empty($action)) { $taction = $this->getPageTitleActionText();